home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cre@te Online 2000 December
/
Cre@teOnline CD05.iso
/
MacSoft
/
XML Instance.sea
/
XML Instance
/
Required
/
plugins
/
HTMLWindow.jar
/
horst
/
TextInput.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
2000-03-18
|
807 b
|
22 lines
package horst;
import java.awt.Dimension;
import javax.swing.JTextField;
class TextInput extends JTextField {
Dimension _prefSize = new Dimension(30, 30);
public int getColumnWidth() {
return super.getColumnWidth();
}
public Dimension getPreferredSize() {
return this._prefSize;
}
public void setPreferredSize(Dimension dim) {
this._prefSize = dim;
super.setPreferredSize(dim);
}
}